From: Richard M. Stallman Date: Sun, 3 Mar 1996 19:42:09 +0000 (+0000) Subject: (texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~84330 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b14f720b0c11804c8a3bcf5ce7456ce4cd7af932;p=emacs.git (texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'. --- diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index e0e8d6395c3..667d32de736 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -220,7 +220,7 @@ chapter." ("@\\(samp\\|code\\|var\\|math\\){\\([^}]+\\)" 2 font-lock-variable-name-face) ("@\\(cite\\|xref\\|pxref\\){\\([^}]+\\)" 2 font-lock-reference-face) - ("@\\(end\\|item\\) *\\(.+\\)" 2 font-lock-function-name-face keep) + ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-function-name-face keep) ) "Additional expressions to highlight in TeXinfo mode.")